home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0056 / 641.txt < prev    next >
Text File  |  1997-04-16  |  20KB  |  486 lines

  1. INFO-ATARI16 Digest         Mon, 13 Nov 89       Volume 89 : Issue 641
  2.  
  3. Today's Topics:
  4.                      (none) GDOS & Outline Fonts
  5.                         Clock chips for 1040?
  6.                               GEM OS/386
  7.                            I/O Redirection
  8.                              Languages!!!
  9.                                NOTATOR
  10.                                 Pascal
  11.                   Problems booting w/accessories...
  12.                  TOS 1.4 Incompatibility List Request
  13.                          TOS 1.4 vs. ARKANOID
  14.                                   TT
  15.                            TT, TT030/2, STE
  16.                       What does the TT Buy me??
  17. ----------------------------------------------------------------------
  18.  
  19. Date: 13 Nov 89 16:02:26 GMT
  20. From: cs.utexas.edu!samsung!aplcen!jhunix!esp_05@tut.cis.ohio-state.edu  (Stdnt
  21.  05)
  22. Subject: (none) GDOS & Outline Fonts
  23.  
  24. Just some thoughts to add to the other thoughts about an outline GDOS:
  25.  
  26. 1) Just now completing a course in computer graphics, I don't see how
  27. anyone could call outline fonts difficult to implement.  Using
  28. scanline fill algorithms coupled with Bresenham's line and circle
  29. (ellipse) algorithms, not only would it be fairly easy to design a
  30. system that scales, but rotations would be just as easy.  As for
  31. speed, well, couldn't be slower than the present incarnation of GDOS,
  32. no?
  33.  
  34. 2) Regarding the point size inquire used by current GDOS programs, one
  35. could implement a program like Apples Font/DA Mover to load and unload
  36. fonts, AND specify what point sizes the GDOS inquire function should
  37. return.
  38.  
  39. 3) Isn't there an info file about GDOS somewhere?  I really know
  40. nothing about the present GDOS, except that Degas Elite seems to ahve
  41. a copy of it on the disk but also seems to run fine without it.
  42.  
  43. I'd be interested in collaborating with someone interested in making
  44. an outline font system.  I've been toying with the idea of re-creating
  45. MacDraw II for the Atari with a few enhancements, one of them being
  46. outline fonts.  Of course, this semester I overloaded my class
  47. schedule and have only used my computer for word processing and CS
  48. assignments.
  49.  
  50. Eric Ruck
  51. (Send mail to: RICK AT JHUVM)
  52.  
  53. ------------------------------
  54.  
  55. Date: 13 Nov 89 17:06:12 GMT
  56. From: psuvm!bgb100@psuvax1.cs.psu.edu  (Bruce Blanar)
  57. Subject: Clock chips for 1040?
  58.  
  59. Hi there:
  60.   I am looking for any info on clock/date chips and cartridges for my 1040.
  61. Christmas is coming up and I'd like to know where I can get one of this
  62. for a decent price.  I've seen prices around $40-$50 for just the time/date
  63. setup.  If you have one of these things, could you please tell me about your
  64. clock chip, how it's used, name of maker and approximate price.  I'd just like
  65. to get a good one and not get stuck with a piece of junk.  Please let me
  66. know what you think!
  67.  
  68. Thanks!!!!
  69. Bruce Blanar
  70. -------
  71. =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  72.  __   __   __    Bruce Blanar           |"Everybody need a mood lifter,
  73. |__) | _  |__)   Penn State University  | Everybody need reverse polarity."
  74. |__).|__|.|__).  BGB100@PSUVM.BITNET    |                      -Rush
  75.                  voice: (814)862-8036   |
  76.  
  77. ------------------------------
  78.  
  79. Date: 13 Nov 89 16:42:16 GMT
  80. From: ogccse!blake!ramsiri@ucsd.edu  (Enartloc Nhoj)
  81. Subject: GEM OS/386
  82.  
  83. In article <8911130802.AA09876@ucbvax.Berkeley.EDU> 01659@AECLCR.BITNET (Greg
  84.  Csullog) writes:
  85. >Apparently DRI is going to release a multitasking GEM for '386 machines.
  86. >Atari ported GEM for 8088s to the 68000, can it port GEM OS/386 to the
  87. >68030?
  88.  
  89.  
  90. I got the impression that Allen says it is very hard,
  91. perhaps TOO hard.
  92.  
  93. Maybe its like "shooting AT the moon"
  94.  
  95. I wonder how hard it was to get people
  96. walking up there 20 years ago?
  97.  
  98. -kevin
  99. ramsiri@blake.acs.washington.edu
  100.  
  101. ------------------------------
  102.  
  103. Date: 13 Nov 89 14:24:42 GMT
  104. From: eru!luth!sunic!mcsun!hp4nl!ruuinf!piet@bloom-beacon.mit.edu  (Piet van
  105.  Oostrum)
  106. Subject: I/O Redirection
  107.  
  108. It seems that I am having some problems with I/O redirection. What I do to
  109. exec a child with e.g. the stdout to some file:
  110.  
  111.         temp1 = Fdup(1);                        /* save old stdout */
  112.         temp2 = open ("filename", O_WRONLY);    /* Fopen or Fcreate */
  113.         if (temp2 < -3) ?printf ("error");?
  114.         Fforce (1, temp2);                      /* set new stdout */
  115.         Fclose (temp2);                         /* no use for temp2 anymore */
  116.         Pexec (......);                         /* start child */
  117.         Fforce (1, temp1);                      /* reset stdout */
  118.         Fclose (temp1);                         /* no use for temp1 anymore */
  119.  
  120. Could it be that the close statements are giving problems?? It is not
  121. completely clear to me what is going wrong, but I have had strange
  122. malfunctions after execing a child like this. It could be that it has to do
  123. with using GULAM as a shell. I remember a question from Jahwar Bammi about
  124. this subject earlier this year, where a redirection gave also similar
  125. problems. I copy it to the end of this posting.
  126.  
  127.  Could someone from Atari speak about the above code. Is this the correct
  128. way to do things?
  129.  
  130. From bammi's posting:
  131.  
  132. i had tried to include a redirection for stderr to console, so that
  133. gcc applications would not need a wrapper shell to run in by doing
  134. a
  135.         Fforce(2,(short)Fdup(1))
  136. in crt0.s. This works fine, until you try to redirect stdout from
  137. a shell (like gulam)
  138.         a.out > foo
  139. what happens is that stdout and stderr end up in foo (another exotic TOS
  140. bug -- is this fixed in tos 1.4??)
  141. Now if you try to run this program a second time:
  142.         - i get error code -61
  143.         - eric smith reported that some files got trashed
  144. so depending on your setup, i suspect one of the two will happen.
  145. Please apply the patch enclosed below that backs out these changes, and
  146. recompile and install crt0.o in $GNULIB. Hopefully we will come up
  147. with a better scheme for stderr soon:
  148. --
  149. *** crt0.s?     Fri Mar 10 16:00:34 1989
  150. --- crt0.s      Fri Mar 10 16:01:00 1989
  151. ***************
  152. *** 146,162 ****
  153.   |     movw    d3, sp@-                | push argc
  154.         movel   d3,sp@-                 | .. jrd
  155.  
  156. -       movw    #1, sp@-                | set up stderr  ++jrb
  157. -       movw    #0x45,sp@-              | Fforce(2,(int)Fdup(1))
  158. -       trap    #1
  159. -       movw    d0,sp@-
  160. -       movw    #2,sp@-
  161. -       movw    #0x46,sp@-              | Fforce
  162. -       trap    #1
  163. -       lea     sp@(10),sp              | adjust stack
  164. -
  165. -       subl    a6, a6                  | clear link reg - why I don't know
  166. -
  167. --
  168. Piet* van Oostrum, Dept of Computer Science, University of Utrecht
  169. Padualaan 14, P.O. Box 80.089, 3508 TB Utrecht,  The Netherlands.
  170. Telephone: +31-30-531806   Uucp: uunet!mcsun!hp4nl!ruuinf!piet
  171. Telefax:   +31-30-513791   Internet: piet@cs.ruu.nl      (*`Pete')
  172.  
  173. ------------------------------
  174.  
  175. Date: 13 Nov 89 16:09:32 GMT
  176. From:
  177.  gem.mps.ohio-state.edu!uakari.primate.wisc.edu!aplcen!jhunix!esp_05@tut.cis.ohi
  178. o-state.edu  (Stdnt 05)
  179. Subject: Languages!!!
  180.  
  181. Strikes me that older versions of GFA Basic are in the public domain.
  182. Although I don't know a whole lot about it because I don't use it, it
  183. strikes me that it has full GEM support, and that it's really easy to
  184. use. The one time I looked at it, I was also impressed by its editor.
  185. If I used BASIC I would probably be happy with it.  (I must say, way
  186. back when I got my 520ST in what, '86 I guess, ST BASIC was a real
  187. disappointment.)
  188.  
  189. Eric Ruck
  190.  
  191. ------------------------------
  192.  
  193. Date: 13 Nov 89 19:01:07 GMT
  194. From: ogccse!blake!ramsiri@ucsd.edu  (Enartloc Nhoj)
  195. Subject: NOTATOR
  196.  
  197. From
  198.  ogccse!ucsd!tut.cis.ohio-state.edu!snorkelwacker!mit-eddie!attctc!jolnet!swan
  199.  Mon Nov 13 09:00:28 PST 1989
  200. Article 19605 of comp.sys.amiga:
  201. Path:
  202.  blake!ogccse!ucsd!tut.cis.ohio-state.edu!snorkelwacker!mit-eddie!attctc!jolnet!
  203. swan
  204. >From: swan@jolnet.ORPK.IL.US (Joel Swan)
  205. Newsgroups: comp.sys.amiga
  206. Subject: Re: Music notation software?
  207. Message-ID: <2095@jolnet.ORPK.IL.US>
  208. Date: 13 Nov 89 07:12:33 GMT
  209. References: <8910301728.AA27683@gilroy.pa.dec.com> <1766@thumper.bellcore.com>
  210.  <4414@blake.acs.washington.edu>
  211. Reply-To: swan@jolnet.UUCP (Joel Swan)
  212. Organization: Media Specialties LTD
  213. Lines: 42
  214. Posted: Sun Nov 12 23:12:33 1989
  215.  
  216. In article <4414@blake.acs.washington.edu> ramsiri@blake.acs.washington.edu
  217.  (Enartloc Nhoj) writes:
  218. :In article <1766@thumper.bellcore.com> lamb@thumper.bellcore.com (John W. Lamb)
  219.  writes:
  220. :>
  221. :>If you are willing to buy both DMCS and The Copyist, you can enter
  222. :>the score in DMCS, import it into The Copyist, tweak as needed and
  223. :>
  224. :>No matter how you do it, producing good looking sheet music is a
  225. :>lot of work.  After using both programs separately and together
  226. :>many times, it still takes me 1 or 2 hours per page to get
  227. :>something I'm happy with.
  228. :
  229. :I have just begun reading the AMiga newsgroup.
  230. :I have an ATARI 1040ST .. am considering the Amiga 3000 or the Atari TTx
  231. :
  232. :Music:  I use NOTATOR for the Atari.  While The Copyist is also
  233. :available for the ATARI, i can't see spending 1-2 hours per page.
  234. :I did close to 300 pages one week for the Pacific Northwest ballet.
  235. :Notation and midi-event data are fully integrated.  No file conversion
  236. :or program switching is necessary.
  237. :
  238. :I am reading this newsgroup to find out if anything like NOTATOR
  239. :even exists for the AMiga... as i am growing very interested in the
  240. :open architecture of the Amiga line and may in fact leave the ATARI world.
  241.  
  242. Unfortunately there is nothing close to the power of Notator for the Amiga.
  243. It really is a pitty because the Amiga could probably blow the Atari
  244. version from the water.  Still, no one has really maxed the Amiga out in terms
  245. of midi software or notation software.  Notator is a remarkable feet of
  246. software engineering on an average to above average piece of hardware.
  247. I do wish the Amiga software developers would not rely so heavily on
  248. the Amiga's hardware magic and instead (in addition to) push their software
  249. creativity to the limits, as was done with Notator.  I would give anything
  250. to see C-Lab do Notator on the Amiga.  Sigh, What a dream.
  251.  
  252. (To those Amiga users who have never seen Notator by C-LAB, I HIGHLY recommend
  253. you run down to the nearest Music dealer who knows the Atari and Notator and
  254. watch it run.  You will be Amazed.  I wish some Amiga music-software developers
  255. would look at it and get inspired!)
  256. :-kevin
  257. :ramsiri@blake.acs.washington.edu
  258.  
  259. Joel Swan
  260.  
  261. I offer this posting for those who are wondering which machine
  262. is better for music.  Obviously the Atari wins in this category.
  263. The existence of NOTATOR is the primary reason I wait for the TT.
  264. If NOTATOR shows up on another box... hmm?
  265.  
  266. -kevin
  267. ramsiri@blake.acs.washington.edu
  268.  
  269. ------------------------------
  270.  
  271. Date: 13 Nov 89 16:47:35 GMT
  272. From: davidli@UMN-CS.CS.UMN.EDU  (Dave Meile)
  273. Subject: Pascal
  274.  
  275. In article <wZLP2fe00XoGA0kEcT@andrew.cmu.edu> mg40+@andrew.cmu.edu (Michael
  276.  Jeffrey Garland) writes:
  277. >There is a program on the terminator archive called PASCALII.ARC.  My
  278. >question is, what compiler/linker does this shell belong to?  I'd like a
  279. >pascal system and if this is a PD version, I'm very interested in it.
  280. >Does anyone know about this?
  281.  
  282. The shell program is for Personal Pascal, previously marketed by OSS in the
  283. United States and now by another company whose initials my mind has blanked
  284. on...
  285.  
  286. The compiler is not in the public domain, nor do I know of any version of
  287. Pascal which is PD.  The actual cost for Personal Pascal (and most of the
  288. others avaialable for the Atari ST) was fairly reasonable when I purchased
  289. my copy.
  290.  
  291. -- David Paschall-Zimbel
  292.  
  293. ------------------------------
  294.  
  295. Date: 13 Nov 89 14:11:34 GMT
  296. From: eru!luth!sunic!mcsun!hp4nl!ruuinf!piet@bloom-beacon.mit.edu  (Piet van
  297.  Oostrum)
  298. Subject: Problems booting w/accessories...
  299.  
  300. In article <1786@ruuinf.cs.ruu.nl>, verwer@ruuinf (Nico Verwer) writes:
  301.  `In article <1669@fredonia.UUCP>, sale5312@fredonia.UUCP (Marty Saletta)
  302.  writes:
  303.                                                                   Sometimes
  304.  `| when I boot up with such a floppy (I'd guess about 10% of the time) I
  305.  `| get the computer loading a few of the accessories, but then doing a
  306.  `| cold or warm boot in the middle.  It's like someone hitting the reset
  307.  `| switch during bootup before the GEM Desktop appears.
  308.  `
  309.  `This sometimes happens to me, with about the same frequency. The boot
  310.  `procedure seems to go all right, and then suddenly a reset occurs.
  311.  `The machine boots again, and everything is fine.
  312.  
  313. I also encounter this occasionally, and I get the impression that it
  314. happens when you move the mouse. I suspect that some mouse-interrupt vector
  315. is not properly set until GEM has been initialized.
  316. --
  317. Piet* van Oostrum, Dept of Computer Science, University of Utrecht
  318. Padualaan 14, P.O. Box 80.089, 3508 TB Utrecht,  The Netherlands.
  319. Telephone: +31-30-531806   Uucp: uunet!mcsun!hp4nl!ruuinf!piet
  320. Telefax:   +31-30-513791   Internet: piet@cs.ruu.nl      (*`Pete')
  321.  
  322. ------------------------------
  323.  
  324. Date: 13 Nov 89 18:31:55 GMT
  325. From: pasteur!euler.Berkeley.EDU!jmorton@ucbvax.Berkeley.EDU  (John Morton)
  326. Subject: TOS 1.4 Incompatibility List Request
  327.  
  328. In article <130@watserv1.waterloo.edu> bmaraldo@watserv1.waterloo.edu (Commander
  329.  Brett Maraldo) writes:
  330. >Can somebody post or email me an updated TOS 1.4 incompatibility list?
  331. >I am considering purchasing TOS1.4 ROMs - is it worth it?
  332. >
  333.  
  334. I have been trying to keep my list up to date, but I have found that
  335. most entries have been contested by subsequent postings.  The following
  336. is where it stands now, with all entries removed which were cited as
  337. running flawlessly by someone.
  338.  
  339. Chessmaster 2000 - bombs on save
  340. Mavis Beacon Teaches Typing
  341. PC Ditto v. 3.01 - (some disagreement on this, unresolved)
  342. compress.ttp - comp.binaries - (disagreement here also)
  343. VIP Professional, GEM version - pallette problems
  344. Timeworks DTP
  345. Mousetrap
  346. Omnires 3.01
  347. Baal
  348. ST Wars
  349. Zoo
  350. Arkanoid
  351.  
  352.  
  353. "Down                      John Morton                  M.E. Machine Shop
  354.  Down in the basement      jmorton@euler.berkeley.edu   Etcheverry Hall
  355.  We hear the sound of machines..."                      Univ. of Calif.
  356.  
  357. ------------------------------
  358.  
  359. Date: 13 Nov 89 18:05:35 GMT
  360. From: ncis.tis.llnl.gov!blackbird!news@lll-winken.llnl.gov  (News System
  361.  Account)
  362. Subject: TOS 1.4 vs. ARKANOID
  363.  
  364. I have found the illegal accesses to the mouse buttons and position that
  365. ARKANIOD makes and have the (illegal) replacement accesses (now only works
  366. on 1.4).  Details via email.  Then there's the "invincible" modification ...
  367. Naaah, that'd spoil it. ;-)
  368.  
  369.  
  370. -------------------------------------------------------------------------------
  371.  Bill Hodges                    |  Me?  People who speak for the Air Force get
  372.  bhodges@blackbird.afit.af.mil  |  paid a lot more than I do! I just work here.
  373. -------------------------------------------------------------------------------
  374.  
  375. ------------------------------
  376.  
  377. Date: 13 Nov 89 06:44:20 GMT
  378. From: portal!cup.portal.com!Bob_BobR_Retelle@uunet.uu.net
  379. Subject: TT
  380.  
  381. Steve Whitney sez:
  382.  
  383. >THANK YOU Atari.  It appears to me that you've been listening to what people
  384. >want.  What have been the main complaints against the ST hardware?
  385.  
  386. >       1) Memory not expandable:  Taken care of in TT
  387.  
  388. Yes, thank you Atari.. .this only took since 1985
  389.  
  390. >       2) ACSI instead of SCSI: Taken care of, means cheaper disk drives
  391.  
  392. Yes again thank you.. only 4 years to come up to industry standards.
  393.  
  394. >       3) Only one serial port: Taken care of
  395.  
  396. Again, thank you.. my 8-bit Atari has only had 4 serial ports since 1979
  397.  
  398. >Most of the rest of the complaints are software-oriented.  Give Atari time.
  399.  
  400. Yes.. let's give Atari time.. after all, it took them 4 years to upgrade the
  401. operating system in the ST, and they still can't seem to fix GDOS, so let's
  402. give them time.  Maybe by the turn of the century they'll be able to come
  403. up to 1980's standards.
  404.  
  405. >They have said unofficially, with no commitment to a target release date
  406. >that there will eventually be a multitasking TOS.  Someday.  Not tomorrow.
  407. >Unix should be available sooner.
  408.  
  409. I've also heard that someday pigs would fly... maybe with Atari controlled
  410. computers..?  Seems to me that I've heard about multitasking Operating System
  411. on other computers *now*...  Not tomomorrow.. Now..
  412.  
  413. Maybe a better advertising slogan for Atari would be:
  414.  
  415. "Someday, Over the Rainbow"
  416.  
  417. BobR
  418.  
  419. ------------------------------
  420.  
  421. Date: 13 Nov 89 09:59:34 GMT
  422. From: mcsun!inria!laas!news@uunet.uu.net  (USENET News System)
  423. Subject: TT, TT030/2, STE
  424.  
  425. In article <4062.255748c1@uwovax.uwo.ca> 4224_5132@uwovax.uwo.ca (Andrew Semple)
  426.  writes:
  427. |
  428. |     ---> The 1040 should be phased out during March/April 1990 and replaced
  429. |  by the once called "ST Plus" or "Enhanced ST", now called 1040STE.  The
  430. |  STE will include 1MbRam, fast hardware scrolling, 4096 colour palette,
  431. |  8-bit stero PCM sound, TOS1.4 operating system, and four SIMM (single in
  432. |  line memory module) for easy expansion to 4Mb."
  433.  
  434. Just a slight correction.  According to local full-color adds, by
  435. Atari-France, for the STE, it will come with 512k RAM.  It's
  436. advertised as the 520 STE!
  437.  
  438. Them's my two bits worth.  :-)
  439.  
  440. Ralph P. Sobek                    Disclaimer: The above ruminations are my own.
  441. ralph@laas.laas.fr                         Addresses are ordered by importance.
  442. ralph@laas.uucp, or ...!uunet!mcvax!laas!ralph          If all else fails, try:
  443. SOBEK@FRMOP11.BITNET                                  sobek@eclair.Berkeley.EDU
  444. ===============================================================================
  445. Upon the instruments of death the sunlight brightly gleams.   --   King Crimson
  446.  
  447. ------------------------------
  448.  
  449. Date: 13 Nov 89 07:34:14 GMT
  450. From: mcsun!unido!tub!tmpmbx!netmbx!hase@uunet.uu.net  (Hartmut Semken)
  451. Subject: What does the TT Buy me??
  452.  
  453. In article <29034@shemp.CS.UCLA.EDU> stephen@oahu.UUCP (Steve Whitney) writes:
  454. >Correct me if I'm wrong, but as I understand it, VME is a multimaster bus
  455. >which means that you can plug another processor board in there and let
  456. >it control the system.  Perhaps this is one of the reasons Atari chose to
  457. >use an expensive bus standard.
  458.  
  459.  
  460. True. Standard-VME is a multimaster BUS.
  461. Ataris "implementation" in the TT/Personal (the one to come real soon
  462. now) is not capable of multiple masters.
  463.  
  464. as someone@atari said, the TT/x (the larger machine, prototypes yet to
  465. be seen) will have a 32-bit extended VME BUS capable of multiple bus
  466. masters.
  467.  
  468. Very few VME cards are BUS masters. Most are slaves. So the TT/P's slot
  469. will do almost everything You want it to do.
  470.  
  471.  
  472. But why don't we all just shut up till the TT appears in the shops, till
  473. we get facts/real machines thar rattle when falling down?
  474.  
  475. hase
  476. --
  477. Hartmut Semken, Lupsteiner Weg 67, 1000 Berlin 37 hase@netmbx.UUCP
  478. Dennis had stepped up into the top seat whet its founder had died of a
  479. lethal overdose of brick wall, taken while under the influence of a
  480. Ferrari and a bottle of tequila. (Douglas Adams; the long dark teatime...)
  481.  
  482. ------------------------------
  483.  
  484. End of INFO-ATARI16 Digest V89 Issue #641
  485. *****************************************
  486. =========================================================================